13. Autocomplete
Autocomplete
Question:
Start Quiz:
<!DOCTYPE html>
<!--
Make this email input autofillable by adding an `autocomplete` attribute.
-->
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Quiz - Autocomplete</title>
</head>
<body>
<form action="#">
<label for="email">
<span>Email:</span>
<input type="email" id="email" placeholder="example@udacity.com">
</label>
</form>
</body>
</html>